home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / System / MCC_SpeedBar / Developer / C / Examples / smakefile < prev   
Encoding:
Makefile  |  1999-10-13  |  237 b   |  19 lines

  1. # SMakefile for Demo
  2. #
  3. # $Id: smakefile,v 1.1 1999/08/03 17:28:35 kingguppy Exp $
  4. #
  5.  
  6. OBJS= mybrush.o Demo.o
  7.  
  8. Demo: $(OBJS)
  9.    sc link to Demo with <<
  10. $(OBJS)
  11. <
  12.  
  13. mybrush.o: mybrush.c mybrush.h
  14.  
  15. Demo.o: Demo.c /SpeedBar_mcc.h mybrush.h
  16.  
  17.  
  18.  
  19.